Digital Wanderer

We live as long as we fly

Nostalgia (the game Alley Cat)

Still addictive, and to think it was made in 1984! I'm also amazed at how far progress has come - DOS games running in the browser.

<div id="dosbox"></div>
<br/>


<script type="text/javascript" src="/js/js-dos-api.min.js"></script>
<script type="text/javascript">
  var dosbox = new Dosbox({
    id: "dosbox",
    onload: function (dosbox) {
      dosbox.run("/files/lj/alley_cat.zip", "./CAT.EXE");
    },
    onrun: function (dosbox, app) {
      console.log("App '" + app + "' is runned");
    }
  });
</script>